home *** CD-ROM | disk | FTP | other *** search
/ Creative Computers / Creative Computers CD-ROM, Volume 1 (Legendary Design Technologies, Inc.)(1994).iso / shareware / fractals / ffex / source / render.def < prev    next >
Text File  |  1994-11-17  |  953b  |  30 lines

  1. (* Modul   : Render                             *)
  2. (* Projekt : FFEX                             *)
  3. (* Autor   : Robert Brandner                         *)
  4. (* Funktion: INLINE-Prozeduren für Berechnungen, Grafik, Mauszeiger  *)
  5.  
  6. DEFINITION MODULE Render;
  7.  
  8. FROM SYSTEM    IMPORT ADDRESS;
  9. FROM Intuition IMPORT WindowPtr;
  10.  
  11. (*** Prozeduren für Fraktalgrafik ************************************)
  12.  
  13. PROCEDURE SetPixel(x{0},y{1},col{2},maxit{3},
  14.                    maxcol{4}:LONGINT;plane0Ptr{8}:ADDRESS);
  15.  
  16. PROCEDURE GetPixel(x{0},y{1},planes{2}:LONGINT;
  17.                    plane0Ptr{8}:ADDRESS):LONGINT;
  18.  
  19. PROCEDURE FastIter32(cx,cy:LONGREAL;maxiter:LONGINT):LONGINT;
  20. PROCEDURE FastIter16(cx,cy:LONGREAL; maxiter:LONGINT):LONGINT;
  21. PROCEDURE LongRealIter(cx,cy:LONGREAL; maxiter:LONGINT):LONGINT;
  22.  
  23. (*** Prozeduren für Mauszeiger ***************************************)
  24.  
  25. PROCEDURE SetNormalPointer(win:WindowPtr);
  26. PROCEDURE SetZZZPointer(win:WindowPtr);
  27. PROCEDURE SetZoomPointer(win:WindowPtr);
  28.  
  29. END Render.def
  30.